Welcome![Sign In][Sign Up]
Location:
Search - html dom

Search list

[WEB Codedompdf_0-6-0_beta3.tar

Description: 支持PHP5的一个PDF类库,可以生成常用的PDF文件,支持图片,html,javascript代码- PHP 5.0+ with the DOM extension enabled. Note that the domxml PECL extension conflicts with the DOM extension and must be disabled. Some fonts. PDFs internally support Helvetica, Times-Roman, Courier, Zapf-Dingbats, & Symbol. DOMPDF adds the , but if you wish to use other fonts or Unicode charsets you will need to install some fonts. dompdf supports the same fonts as the underlying PDF backends: Type 1 (.pfb with the corresponding .afm) and TrueType (.ttf). At the minimum, you should probably have the Microsoft core fonts (now available at: http://corefonts.sourceforge.net/). See below for font installation instructions.
Platform: | Size: 6588416 | Author: long | Hits:

[JSP/JavaDom4j_1_6_1_API

Description: java dom html,相关的资料,很好的程序员手册。-java dom html,
Platform: | Size: 1095680 | Author: djy | Hits:

[Web Serverlightbox

Description: Ajax is not a single technology, but a group of technologies. HTML and CSS can be used in combination to mark up and style information. The DOM is accessed with JavaScript to dynamically display, and to allow the user to interact with the information presented. JavaScript and the XMLHttpRequest object provide a method for exchanging data asynchronously between browser and server to avoid full page reloads.
Platform: | Size: 119808 | Author: erti | Hits:

[JSPccc

Description: “C程基地”网站是以XML技术为基础进行设计和编码的。该网站是一个C语言学习网站,从语言概述、基础教程、编程技巧和经典习题四个部分系统的介绍了C语言这门编程技术。为了尽可能的体现XML的可扩展性和数据存储与数据显示相分离的特点,在设计中围绕XML标准运用了CSS、XSL、XML源文档与HTML整合等方法表现XML源文档;用DTD验证XML文档的有效性;在数据提取部分运用了数据岛以及DOM等技术。在整个网站的设计中尽可能的展示XML的优越性和灵活性-C Cheng base web site is based on XML technology as the basis for the design and coding. The site is a C language learning site, language overview of the basic tutorial, programming skills and classic exercises four parts of the system C language programming. Embodiment of the XML scalability and data storage and data display phase separation characteristics in the design around the XML standard use of CSS, XSL, and XML source document, and HTML integration method to the performance of the source XML document DTD to validate XML the validity of the document use data islands and DOM technology in the data extraction section. Show the superiority and flexibility of XML as much as possible in the design of the entire site
Platform: | Size: 2889728 | Author: www | Hits:

[LabViewcnekk

Description: jsoup 是一款 Java 的HTML 解析器,可直接解析某个URL地址、HTML文本内容。它提供了一套非常省力的API,可通过DOM,CSS以及类似于JQuery的操作方法来取出和操作数据。-jsoup is a Java HTML parser can parse a URL address directly the HTML text content. It provides a very effort API via the DOM and CSS, and similar JQuery operation method to remove and manipulate data
Platform: | Size: 49152 | Author: Law | Hits:

[JSP/Javajsoup-1.7.1-sources.jar

Description: jsoup 是一款 Java 的HTML 解析器,可直接解析某个URL地址、HTML文本内容。它提供了一套非常省力的API,可通过DOM,CSS以及类似于JQuery的操作方法来取出和操作数据。 jsoup的主要功能如下: 从一个URL,文件或字符串中解析HTML; 使用DOM或CSS选择器来查找、取出数据; 可操作HTML元素、属性、文本; jsoup是基于MIT协议发布的,可放心使用于商业项目。-jsoup is a Java library for working with real-world HTML. It provides a very convenient API for extracting and manipulating data, using the best of DOM, CSS, and jquery-like methods. jsoup implements the WHATWG HTML5 specification, and parses HTML to the same DOM as modern browsers do. scrape and parse HTML from a URL, file, or string find and extract data, using DOM traversal or CSS selectors manipulate the HTML elements, attributes, and text clean user-submitted content against a safe white-list, to prevent XSS attacks output tidy HTML jsoup is designed to deal with all varieties of HTML found in the wild from pristine and validating, to invalid tag-soup jsoup will create a sensible parse tree.
Platform: | Size: 114688 | Author: 白水 | Hits:

[JSPjava_or_php_get_simple_html

Description: 对于 Web 信息检索来说,网页正文抽取是后续处理的关键。虽然使用正则表 达式可以准确的抽取某一固定格式的页面,但面对形形色色的 HTML,使用规则 处理难免捉襟见肘。 能不能高效、准确的将一个页面的正文抽取出来,并做到在大规模网页范围 内通用,这是一个直接关系上层应用的难题。 采用建 DOM 树的方法虽然直观也有效,但建树和搜索是多项式时间,且饱 受病态 HTML 的痛苦;采用机器学习或数据挖掘的方法未免有些小题大做。 本算法首次将网页正文抽取问题转化为求页面的行块分布函数,并完全脱离 HTML 标签。通过线性时间建立行块分布函数图,由此图可以直接高效、准确的 定位网页正文。同时采用统计与规则相结合的方法来解决系统的通用性问题。 本系统的设计与实现只为践行“简单的事情总应该用最简单的办法来解决”这 一亘古不变的道理。整个算法实现不足百行代码。我却相信:量不在多,在法。-Distribution function based on row block common web content extraction algorithm
Platform: | Size: 960512 | Author: woody | Hits:

[Industry researchAjaxDebugging

Description: Below are some guidelines that I used to debug Ajaxjavascript using ASP.NET 2.0. Based on the method I believe that it will work with ASP.NET 2003. First I must state that for what ever reason, my system, lack of know-how, or beta products, I could not get the "Script Explorer" to function, any typeof breakpoint to function, and except for some immediate window sniffing of the DOM, no actual debugging on client-side script or HTML using ASP.NET 2.0... I could not give up, so I dug and dug. Tested and retested. Finally taking a technique that I learned working with DCOM, VB6 and ActiveX "COM" servers, I succeeded in debugging not only the "javascript", but the "html" as well. I am able to set a breakpoint on a HTML button tag and/or another one in the javascript, then a third in my code-behind "C#" code. Using this technique I can step "F11" thru a Ajax or Script RPC call and watcheverything, well almost. Enough of the talk hereis how. -Below are some guidelines that I used to debug Ajaxjavascript using ASP.NET 2.0. Based on the method I believe that it will work with ASP.NET 2003. First I must state that for what ever reason, my system, lack of know-how, or beta products, I could not get the "Script Explorer" to function, any typeof breakpoint to function, and except for some immediate window sniffing of the DOM, no actual debugging on client-side script or HTML using ASP.NET 2.0... I could not give up, so I dug and dug. Tested and retested. Finally taking a technique that I learned working with DCOM, VB6 and ActiveX "COM" servers, I succeeded in debugging not only the "javascript", but the "html" as well. I am able to set a breakpoint on a HTML button tag and/or another one in the javascript, then a third in my code-behind "C#" code. Using this technique I can step "F11" thru a Ajax or Script RPC call and watcheverything, well almost. Enough of the talk hereis how.
Platform: | Size: 203776 | Author: daidai | Hits:

[JSPajaxjt

Description: Ajax从入门到精通,Ajax 由 HTML、java script™ 技术、DHTML 和 DOM 组成,这一杰出的方法可以将笨拙的 Web 界面转化成 交互性的 Ajax 应用程序。本系列的作者是一位 Ajax 专家,他演示了这些技术如何协同工作 —— 从总体概 述到细节的讨论 —— 使高效的 Web 开发成为现实。他还揭开了 Ajax 核心概念的神秘面纱,包括 XMLHttpRequest 对象。-ajax examples.
Platform: | Size: 1186816 | Author: xhl | Hits:

[Otherjquery.domupdate

Description: 更新一个树与更新的HTML在这样一种方式,它避免了节点替换不变。这可以促进在线预览DOM更新不闪烁。 -Updates a tree with updated HTML in such a way that it avoids replacing unchanged nodes. This can facilitate live-preview DOM updates without flicker.
Platform: | Size: 1024 | Author: sdagamo | Hits:

[EditorJMEditor-0.9.2

Description: JMEditor(JavaScript Math Editor)是基于CKEditor、jQuery、MathQuill等组件开发的,轻量级、开放源代码、所见即所得、无任何插件的在线公式编辑器。CKEditor与jQuery应用的十分广泛,不再过多介绍。需要指出的是MathQuill,使用HTML+CSS+JS实现公式编辑的效果,他把DOM的力量发挥到了极致。-The JMEditor (JavaScript Math Editor) CKEditor, jQuery, MathQuill based components developed, lightweight, open source, WYSIWYG, the online Equation Editor without any plug-ins. The noted MathQuill, the effect of the Equation Editor using HTML+CSS+JS DOM forces to the extreme.
Platform: | Size: 2918400 | Author: JMEditor | Hits:

[Software EngineeringjQuery

Description: jQuery源码分析系列,jQuery凭借简洁的语法和跨平台的兼容性,极大地简化了JavaScript开发开发人员遍历HTML文档、操 作DOM、处理事件、执行动画和开发Ajax的操作。其独特而又优雅的代码风格改变了JavaScript程序员的设计 思路和编写程序的方式-jQuery source code analysis series, jQuery with concise syntax and cross-platform compatibility, greatly simplifying the JavaScript developer developers traverse HTML documents, operating DOM, handle events, perform animations, and develop Ajax operations. Its unique and elegant style, change the code of the design ideas and JavaScript programmers write programs
Platform: | Size: 942080 | Author: xiaoping.lu | Hits:

[JSP/Javajsoup

Description: jsoup是一个Java HTML Parser。能够从URL、文件或字符串解析HTML。利用DOM遍历或CSS选择器查找和抽取数据。能够操作HTML元素,属性和文本。能够依据一个白名单过滤用户提交的内容-jsoup is a Java HTML Parser. Able from the URL, file or string parsing HTML. Use DOM traversal or CSS selectors to find and extract data. Can manipulate HTML elements, attributes, and text. Able to filter based on a white list user submitted content
Platform: | Size: 755712 | Author: lee | Hits:

[JSPDHTMLreference

Description: Dhtml reference. Dhtml=html+css+script+dom
Platform: | Size: 3870720 | Author: zhang | Hits:

[OtherHTML5-Pocket-Reference

Description: 目前正在开发HTML5万维网的核心标记语言HTML(超文本标记语言),作为下一个主要的修订。 HTML5是HTML4.01,XHTML1.0和DOM Level2 HTML建议下标准。 HTML5袖珍参考是一个易于使用的应用程序来帮助你从日复一日的HTML5编码中解脱。-HTML5 is currently being developed as the next major revision of HTML (HyperText Markup Language), the core markup language of the World Wide Web. HTML5 is the proposed next standard for HTML 4.01, XHTML 1.0 and DOM Level 2 HTML. HTML5 Pocket Reference is an easy to use app to help you out with your day to day HTML5 coding.
Platform: | Size: 3792896 | Author: huangjiming | Hits:

[WEB Codesimplehtmldom_1_5

Description: DOM解析器 HTML and XHTML Document parser-HTML and XHTML Document parser
Platform: | Size: 344064 | Author: sowoo4 | Hits:

[Internet-Networkhtmlcxx-0.84

Description: html 小而精的 一款解析 api , 使用sax方式生成 DOM树-a html parser written by C++ 。
Platform: | Size: 344064 | Author: liujie | Hits:

[Linux-UnixTestDefaultLS

Description: Test suite that runs all DOM L2 HTML tests using the Default LS parser in default configuration.
Platform: | Size: 1024 | Author: tonyozang | Hits:

[Delphi VCLeasynet

Description: EasyNET and DOM HTML Parser 1.1 useful to get Web Source Code and Parse
Platform: | Size: 215040 | Author: Liam | Hits:

[JSP/JavaTestDefaultLSAltConfig

Description: Test suite that runs all DOM L2 HTML tests using the Default LS parser in an alternative configuration.
Platform: | Size: 1024 | Author: wengtiuming | Hits:
« 1 2 3 4 56 »

CodeBus www.codebus.net